From: Ivan Komissarov Date: Wed, 4 Feb 2026 21:42:19 +0000 (+0300) Subject: [PATCH] Fix build with Qt 6.10 X-Git-Tag: archive/raspbian/3.1.2-2+rpi1^2~7 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/%22mailto:kde%40ewsoftware.de/%22style.css//%22node%24level1.%24level2.html/%22/%22http:/www.example.com/%22mailto:kde%40ewsoftware.de/%22style.css/%22node%24level1.%24level2.html/%22?a=commitdiff_plain;h=0a0e7912badefc6a89fd3ce9f89a41617cf83803;p=qbs.git [PATCH] Fix build with Qt 6.10 Change-Id: Iab8a4291d12c90ba4538d9ce138fdb74886c081e Reviewed-by: Christian Kandeler Gbp-Pq: Name upstream_Fix-build-with-Qt-6.10.patch --- diff --git a/tests/auto/language/tst_language.cpp b/tests/auto/language/tst_language.cpp index a1054012..fd4f55ab 100644 --- a/tests/auto/language/tst_language.cpp +++ b/tests/auto/language/tst_language.cpp @@ -1467,7 +1467,7 @@ void TestLanguage::groupConditions() for (size_t i = 0; i < groupCount; ++i) { if (product->groups.at(i)->enabled != groupEnabled.at(i)) { QFAIL(qPrintable( - QString("groups.at(%1)->enabled != %2").arg(i).arg(groupEnabled.at(i)))); + QString("groups.at(%1)->enabled != %2").arg(i).arg(bool(groupEnabled.at(i))))); } } }